crypto/tls.Conn.hand (field)
17 uses
crypto/tls (current package)
conn.go#L103: hand bytes.Buffer // handshake data waiting to be read
conn.go#L704: if c.vers == VersionTLS13 && typ != recordTypeHandshake && c.hand.Len() > 0 {
conn.go#L740: if c.hand.Len() > 0 {
conn.go#L776: c.hand.Write(data)
conn.go#L1073: for c.hand.Len() < n {
conn.go#L1088: data := c.hand.Bytes()
conn.go#L1097: data = c.hand.Next(4 + n)
conn.go#L1372: for c.hand.Len() > 0 {
handshake_client_tls13.go#L402: if c.hand.Len() != 0 {
handshake_client_tls13.go#L713: if c.hand.Len() != 0 {
handshake_server_tls13.go#L619: if c.hand.Len() != 0 {
handshake_server_tls13.go#L750: if c.hand.Len() != 0 {
quic.go#L233: c.hand.Write(c.quic.readbuf)
quic.go#L235: for q.conn.hand.Len() >= 4 && q.conn.handshakeErr == nil {
quic.go#L236: b := q.conn.hand.Bytes()
quic.go#L318: for c.hand.Len() < n {
quic.go#L415: c.hand.Write(c.quic.readbuf)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |